﻿/** 清除内外边距 **/
body,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
p,
blockquote,
/* structural elements 结构元素 */
dl,
dt,
dd,
ul,
ol,
li,
/* list elements 列表元素 */
pre,
/* text formatting elements 文本格式元素 */
form,
fieldset,
legend,
button,
input,
textarea,
/* form elements 表单元素 */
th,
td

/* table elements 表格元素 */
  {
  margin: 0;
  padding: 0;
}

@font-face {
    /* font-properties */
    font-family: DroidSans;
    src:url('DroidSansChinese.ttf')
}

/** 设置默认字体 **/
body,
button,
input,
select,
textarea

/* for ie */
  {
  font: 14px/1.0 "Arial", "DroidSans",  "KaiTi", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

address,
cite,
dfn,
em,
var,
i {
  font-style: normal;
}

/* 将斜体扶正 */
code,
kbd,
pre,
samp {
  font-family: courier new, courier, monospace;
}

/* 统一等宽字体 */
small {
  font-size: 12px;
}

/* 小于 12px 的中文很难阅读, 让 small 正常化 */

/** 重置列表元素 **/
ul,
ol {
  list-style: none;
}

/** 重置文本格式元素 **/
a {
  color: #333;
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

a:hover {
  text-decoration: none;
  cursor: pointer;
}

sup {
  vertical-align: text-top;
}

/* 重置, 减少对行高的影响 */
sub {
  vertical-align: text-bottom;
}

/** 重置表单元素 **/
legend {
  color: #000;
}

/* for ie6 */
fieldset,
img {
  border: 0;
}

/* img 搭车：让链接里的 img 无边框 */
button,
input,
select,
textarea {
  font-size: 100%;
  outline: none;
}

/* 使得表单元素在 ie 下能继承字体大小 */
button,
input[type="button"] {
  cursor: pointer;
  -webkit-appearance: none;
}

input::-ms-clear {
  display: none;
}

/*隐藏文本框叉子*/
input::-ms-reveal {
  display: none;
}

/*隐藏密码框小眼睛*/
/* 注：optgroup 无法扶正 */

/** 重置表格元素 **/
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* 重置 HTML5 元素 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  display: block;
  margin: 0;
  padding: 0;
}

sup {
  line-height: 0;
  position: relative;
  vertical-align: baseline;
  top: -.5rem;
  left: -.2rem;
}

* {
  font-size: 24px;
  --colorR: #E01837;
  --colorW: #fff;
}

@font-face {
  font-family: 'wbzt1';
  src: url('wbzt1.otf');
}


.colorR {
  color: var(--colorR);
}

.colorW {
  color: #fff;
}

.flex-row {
  display: flex;
}

.flex-column {
  display: flex;
  flex-direction: column;
}

.padding {
  padding: 6.5vw 6vw;
  box-sizing: border-box;
}

.padding2 {
  padding: 8% 0;
  box-sizing: border-box;
}

.out {
  width: 100%;
}

.head {
  height: 75px;
  /* height: 70px; */
  width: 80vw;
  left: 10vw;
  position: fixed;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* border-bottom: 1px solid #fff; */
  box-sizing: border-box;
  top: 0;
  transition: .5s;
}

.head-active {
  background-color: #fff;
  width: 100%;
  left: 0;
  padding: 0 5%;
  border-bottom: none;
  box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}

.head .logo {
  display: flex;
  /* width: 9%;
  height: 100%;
  background-image: url('../images/logo.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain; */
  width: 8%;
  align-items: center;
}

.head .logo img {
  max-width: 100%; max-height:50px;
}

.input-box {
  width: 8%;
}

.input-box form {
  width: 100%;
  position: relative;
}

.input-border {
  border: none;
  width: 100%;
  height: 30px;
  border-radius: 15px;
  padding: 0 35px;
  box-sizing: border-box;
  font-size: .62rem;
}

.input-box form .submit {
  position: absolute;
  left: 10px;
  top: 50%;
  background-image: url('../images/search.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transform: translate(0, -50%);
  height: 20px;
  width: 20px;
  background-color: transparent;
  border: none;
}

.head ul {
  display: flex;
  width: 65%;
  justify-content: flex-end;
}

.head ul li {
  display: flex;
  align-items: center;
}

.head ul a {
  font-size: .82rem;
  color: #282828;
  margin: 0 25px;
  opacity:0;
}

.head.head-active ul a {
	opacity:1;
}

.head.head-active ul li.cur a {
	color:#008BE6;
}

.nav-btn {
  width: 30px;
  height: 38px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  background:url(/images/nav.png) no-repeat center center;
}

.nav-btn span {
  height: 2px;
  width: 100%;
  background-color: #fff;
  display: flex;
  position: absolute;
  transition: .5s;
}

.nav-btn span:nth-child(1) {
  top: 0;
  left: 0;
}

.nav-btn span:nth-child(2) {
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
}

.nav-btn span:nth-child(3) {
  bottom: 0;
  left: 0;
}

.nav-btn-active.nav-btn{
	background:url(/images/close.png) no-repeat center center; background-size:100% auto;
}

.nav-btn-active span:nth-child(1) {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.nav-btn-active span:nth-child(2) {
  opacity: 0;
}

.nav-btn-active span:nth-child(3) {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.head-right {
  display: flex;
  justify-content: space-between;
  width: 10%;
  position: relative;
  align-items: center;
}

 

.head .en {
  text-transform:capitalize;
  color: #fff;
  font-size: .62rem;
}

.head.head-active .en{
	color:#666;
}

.head a {
  transition: .5s;
}

/* .head a:hover {
  color: var(--colorR);
} */

/* .head-active ul a {
  color: #333;
}

.head-active .nav-btn span {
  background-color: #333;
}

.head-active .input-border {
  border: 1px solid rgba(0, 0, 0, .1);
}

.head-active .en {
  color: #333;
}

.head-active .head-right::after {
  background-color: #333;
} */

.pageSwier {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.pageSwier-inner {
  position: relative;
  height: 100vh !important;
}

.bannerSwiper {
  height: 100vh !important;
}

.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active{
	background:#0195E0;
}


.bannerSwiper img {
  width: 100%;
}

.bannerSwiper .swiper-slide {
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.mobile-text {
  display: none;
}

.bannerSwiper .swiper-slide span {
  font-size: 24px;
  color: #fff;
  letter-spacing: 80px;
  position: absolute;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  padding-left: 80px;
  white-space: nowrap;
}

.mobile-jt {
  display: none;
}

.page-title {
  font-size: 1.4rem;
  letter-spacing: 2px;
  color: #333;
}

.page-title p {
  font-size: .55rem;
  margin-bottom: 10vh;
  margin-top: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.page2-info {
  position: absolute;
  width: 90%;
  left: 0;
  /* background-color: #F6F6F6; */
  padding: 100px 16.5vw;
  padding-left: 0;
  height: auto !important;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page2-info span {
  font-size: .65rem;
  line-height: 1.2rem;
}

.page2-info-inner {
  overflow: hidden;
  padding-left: 16.5vw;
  box-sizing: border-box;
  position: relative;
}

.mCS-my-theme.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #E01837;
}

.mCS-my-theme.mCSB_scrollTools .mCSB_draggerRail {
  background-color: #B5B5B5;
}

.mCSB_scrollTools {
  position: absolute;
  left: -8.25vw;
  top: 0;
}

.mCustomScrollBox {
  overflow: visible;
}

.page2-info p {
  width: 50%;
  font-size: 16px;
  line-height: 1.3rem;
  margin-bottom: 30px;
  color: #4d4d4d;
  text-align: justify;
}

.page2-info p:nth-last-child(1) {
  margin-bottom: 0;
}

.page2-ul {
  position: absolute;
  bottom: 8%;
  display: flex;
  transform: translate(0, -50%);
  width: 70%;
  justify-content: space-between;
}

.page2-ul h2 {
  font-size: 3.5rem;
  color: var(--colorR);
  font-weight: 500;
  font-family: 'wbzt1';
  text-align: center;
  display: flex;
  align-items: flex-end;
  line-height: 2.5rem;
  justify-content: center;
}

.page2-ul h2 p {
  font-size: 3.5rem;
  color: var(--colorR);
  font-weight: 500;
  font-family: 'wbzt1';
  text-align: center;
  margin: 0;
  margin-right: 5px;
}

.page2-ul sup {
  top: -2.4rem;
}

.page2-ul span {
  margin-left: -.2rem;
}

.page2-ul li span {
  margin-left: -.5rem;
}

.page2-ul p {
  font-size: .7rem;
  margin-top: 25px;
  color: #333;
  text-align: center;
}

.page2-ul span {
  font-size: .7rem;
  line-height: 1rem;
}

.page2-info-img {
  position: absolute;
  top: 7.5vw;
  right: 15vw;
  width: 15vw;
  z-index: 2;
  display: none;
}

.page2::after {
  content: "";
  width: 10vw;
  height: 15vw;
  position: absolute;
  right: calc(15vw - 18px);
  top: calc(7.5vw - 16px);
  background-color: var(--colorR);
  display: none;
}

.page3 {
  width: 100%;
  height: 100%;

  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.page3-inner {
  position: absolute;
  width: 100%;
  left: 0;
}

.page3-swpier .swiper-slide {
  padding-bottom: 28%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  filter: blur(5px);
}

.page3-swpier .swiper-slide-active {
  filter: blur(0);
}

.swiper-inner {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  box-sizing: border-box;
  padding: 4% 7% 0;
  opacity: 0;
  color: #fff;
  transition: .5s;
}

.swiper-inner h1 {
  font-size: 9rem;
  font-family: 'wbzt1';
  margin-bottom: 0.4rem;
  margin-left: -0.4rem;
  opacity: 0.8;
  letter-spacing: -0.1rem;
}

.swiper-inner p {
  font-size: 0.8rem;
  line-height: 1.6;
}

.page3-inner .page3-swpier-pagination,
.page5 .page5-swpier-pagination {
  width: 100%;
  margin-top: 50px;
}

.page3-swpier-pagination .swiper-pagination-bullet,
.page5-swpier-pagination .swiper-pagination-bullet {
  width: 80px;
  background-color: #fff;
  height: 3px;
  margin: 0 3px;
  border-radius: 0;
  opacity: 1;
}

.page3-swpier-pagination .swiper-pagination-bullet-active,
.page5-swpier-pagination .swiper-pagination-bullet-active {
  background-color: var(--colorR) !important;
  height: 3px;
}

.page3-swpier .swiper-slide-active .swiper-inner {
  opacity: 1;
}

/* .page3-swpier .swiper-slide .swiper-inner::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 9px;
  background-image: url('../images/a-jt.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  bottom: 20px;
  right: 20px;
  transition: .5s;
} */

.page3-swpier .swiper-slide .swiper-inner:hover::after {
  right: 10px;
}

.background-item {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.background-item2 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto;
}

.background-item3 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}



.logo-list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.logo-item {
  display: flex;
  /* width: 24.5%;
  margin-right: 0.66%; */
  width: calc(25% - 8px);
  margin-right: 10px;
  padding-bottom: 16%;
  /* background-color: rgba(255, 255, 255, .5); */
  border-radius: 15px;
  margin-top: 20px;
  /* filter: grayscale(); */
  box-shadow: 11px 16px 32px rgba(0, 0, 0, .1);
  opacity: 1;
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover !important;
  align-items: flex-start;
  transition: .5s;
}

.logo-item:hover img:nth-child(1) {
  opacity: 0;
}

.logo-item:hover img:nth-child(2) {
  opacity: 1;
}

.logo-item img {
  width: 75%;
  display: inline-block;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  image-rendering: -moz-crisp-edges;
  image-rendering: -o-crisp-edges;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  -ms-interpolation-mode: nearest-neighbor;
  transition: .5s;
}

.logo-item img:nth-child(2) {
  opacity: 0;
}

.logo-item:nth-child(4n) {
  margin-right: 0;
}

.page5 {}

.page5-swpier {
  width: 100%;
  overflow: visible;
}

.page5-inner {
  overflow: hidden;
  /* width: 75%; */
  width: 70%;
  position: absolute;
  /* left: 12.5%; */
  left: 15%;
  padding: 50px 0;
  margin-top: -50px;
  transition: .5s;
}

.page5-swpier .swiper-slide {
  padding-bottom: 35%;
  position: relative;
  transition: transform .5s;
}

.page5-swpier .swiper-slide h2 {
  position: absolute;
  font-size: .65rem;
  left: 30px;
  top: 30px;
}

.page5-swpier-pagination {
  position: absolute;
  bottom: 5vw;
  width: 100% !important;
  left: 0;
}

.page5-swpier .swiper-slide:hover {
  /* border: 10px solid #fff; */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  box-sizing: border-box;
  box-shadow: 0 0 25px rgba(0, 0, 0, .1);
  z-index: 5;
  /* transition: .5s; */
  transform: translate(-5%, 0) scale(1.1);
}

.page5-swpier .swiper-slide-active:hover {
  transform: translate(10%, 0) scale(1.1) !important;
}

.page5-inner:hover {
  /* padding-right: 5px; */
  box-sizing: unset;
}

.page5 .page-title {
  color: #333;
}

.page5-swpier-pagination span {
  /* background-color: #333 !important; */
}

.page6-tab {
  position: absolute;
  left: 46.5vw;
  top: 6.5vw;
  transform: translate(0, 50%);
  display: flex;
}

.page6-tab span {
  cursor: pointer;
  font-size: .65rem;
  padding: 10px 25px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 25px;
  margin: 0 5px;
}

.page6-tab .active {
  background-color: var(--colorR);
  color: #fff;
}

.page6-tab span:hover {
  background-color: var(--colorR);
  color: #fff;
}

.page6-box {
  position: absolute;
  display: flex;
  justify-content: space-between;
  width: 90%;
  height: 55vh;
  left: 0;
  overflow: hidden;
}

.page6-left {
  width: 48%;
  background-color: #F6F6F6;
  /* height: 100%; */
  padding: 30px;
  box-sizing: border-box;
  overflow: hidden;
}

.page6-left .mCustomScrollBox {
  padding-left: calc(16.5vw - 30px);
  overflow: hidden;
}

.page6-left .mCSB_scrollTools {
  left: 8.25vw;
  display: none !important;
}

.page6-left-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}

.page6-left-inner img {
  width: 100%;
}

.page6-left h2 {
  text-align: right;
  font-size: .8rem;
  color: #989898;
}

.page6-left h1 {
  font-size: .75rem;
  line-height: 1.2rem;
}

.page6-left p {
  font-size: .6rem;
  color: #989898;
  line-height: 1.2rem;
  margin-bottom: 15px;
  word-break: break-all;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.page6-left p:nth-child(-n + 3) {
  margin-top: 15px;
}

.page6-left .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: var(--colorR)
}

.page6-right {
  width: 48%;
  height: 100%;
}

.page6-right a {
  display: flex;
  width: 100%;
  height: 33.3%;
  border-bottom: 1px solid #ccc;
  box-sizing: border-box;
  flex-direction: column;
  justify-content: space-between;
  padding: 38px 20px;
  position: relative;
  transition: .5s;
}

.page6-right a:nth-child(1) {
  border-top: 1px solid #ccc;
}

.page6-right a h1 {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  font-size: .8rem;
  position: relative;
}

.page6-right a h1 span {
  color: #989898;
  font-size: .8rem;
}

.page6-right a p {
  font-size: .65rem;
  color: #989898;
  line-height: 1.2rem;
  width: 80%;
}

.page6-right a h1::before {
  content: "";
  left: -10px;
  height: 4px;
  width: 4px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  background-color: #000;
}

.page6-right a::after {
  width: 56px;
  height: 13px;
  content: "";
  position: absolute;
  bottom: 30px;
  right: 20px;
  background-image: url('../images/jt-p6.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto;
  opacity: 0;
  transition: .5s;
}

.page6-right a:hover::after {
  opacity: 1;
}

.page6-box {
  left: -100%;
  opacity: 0;
  transition: .8s;
}

.page6-left .mCustomScrollBox {
  position: relative;
}

.page6-left .mCustomScrollBox::after {
  position: absolute;
  content: '';
  left: calc(8.25vw - 30px);
  top: 0;
  width: 3px;
  height: 100%;
  background-position: center;
  background-image: url('../images/zsx.png');
  background-repeat: no-repeat;
  background-size: contain;
}

.page6-box-active {
  left: 0;
  opacity: 1;
}

.mCSB_container.mCS_no_scrollbar_y.mCS_y_hidden {
  height: 100%;
}

.page6-left-inner {
  justify-content: space-between;
}

.foot-out {
  height: auto !important;
}

.foot {
  height: auto;
  background-color: #898989;
  padding: 4.5vh 16.5vw;
  box-sizing: border-box;
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.foot-left {
  width: 70%;
  display: flex;
  flex-direction: column;
  /* justify-content: space-between; */
}

.foot-left ul {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding-bottom: 25px;
  margin-bottom: 25px;
  border-bottom: 1px solid #fff;
}

.foot-left ul li {
  display: flex;
  flex-direction: column;
}

.foot-left ul a {
  font-size: .6rem;
  margin-bottom: 13px;
  color: #cccccc;
  transition: .5s;
}

.foot-left ul a:nth-last-child(1) {
  margin-bottom: 0;
}

.foot-left ul a:hover {
  color: #fff;
}

.foot-left ul li a:nth-child(1) {
  margin-bottom: 25px;
  color: #fff;
  font-weight: 500;
}

.foot-left-bottom {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.foot-left-bottom-left h1 {
  font-size: .62rem;
  color: #fff;
  margin-bottom: 25px;
}

.foot-left-bottom-left p {
  font-size: .6rem;
  color: #ccc;
  margin-bottom: 15px;
}

.foot-left-bottom-left p:nth-last-child(1) {
  margin-bottom: 0;
}

.foot-h6{
  display: none;
  line-height: 20px;
  font-size: 12px;
  color: #bfbfbf;
  margin-top: 20px;
}

.foot-h6 a{
  display: block;
  line-height: 20px;
  font-size: 12px;
  color: #bfbfbf;
}

.share {
  display: flex;
  align-items: flex-end;
}

.share a {
  width: 30px !important;
  height: 30px !important;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: flex;
  margin-bottom: 0 !important;
  margin-right:30px;
}

.foot-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.ewm {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ewm p {
  font-size: .62rem;
  color: #fff;
  margin-top: 20px;
}

.foot-right input {
  border: none;
  height: 35px;
  border-radius: 17.5px;
  padding: 0 30px;
  box-sizing: border-box;
  font-size: .62rem;
  width: 200px;
  line-height: 35px;
}

.search {
  position: relative;
  width: 200px;
}

.search p {
  border: none;
  height: 35px;
  border-radius: 17.5px;
  padding: 0 30px;
  box-sizing: border-box;
  font-size: 15px;
  width: 100%;
  line-height: 35px;
  background-color: #fff;
  color: #666;
  display: flex;
  position: relative;
  cursor: pointer;
  transition: .5s;
}

.search-active {
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.search p::after {
  position: absolute;
  content: '';
  right: 15px;
  background-image: url('../images/xl-yl.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  height: 15px;
  width: 15px;
  top: 50%;
  transform: translate(0, -50%);
}

.yqlj-more {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #fff;
  width: 100%;
  display: flex;
  flex-direction: column;
  transform: translate(0, 100%);
  border-radius: 17.5px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  display: none;
}

.yqlj-more a {
  font-size: 15px;
  height: 40px;
  border-bottom: 1px solid rgba(0, 0, 0, .1);
  display: flex;
  align-items: center;
  justify-content: left;
  padding: 0 30px;
  color: #666;
  box-sizing: border-box;
}

/* .search::after {
  position: absolute;
  content: '';
  right: 10px;
  top: 50%;
  width: 20px;
  height: 20px;
  background-image: url('../images/search.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transform: translate(0, -50%);
} */

.foot-more {
  height: 30px !important;
  background-color: var(--colorR);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: #fff;
}

.head-mc {
  width: 100%;
  height: 100vh;
  position: fixed;
  background-color: #282828;
  top: 0;
  left: 0;
  z-index: 9;
  padding: 0 10vw;
  padding-top: 20vh;
  box-sizing: border-box;
  display: none;
}

.head-mc ul {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.head-mc ul li {
  width: 20%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.head-mc ul .checkout_l {
  display: none;
}

.head-mc ul li a {
  font-size: .65rem;
  color: #ccc;
  margin-bottom: 25px;
  display: flex;
}

.head-mc ul li a:nth-child(1) {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 35px;
}

.head-mc ul li a:nth-last-child(1) {
  margin-bottom: 0;
}

.head-mc ul li {
  margin-top: 80px;
}

.head-mc ul li:nth-child(-n+5) {
  margin-top: 0;
}

.head-mc ul li span {
  font-size: .65rem;
  color: #ccc;
  margin-top: 20px;
}

.page3-mobile-swiper {
  display: none;
}

.mobile-title-page5 {
  display: none;
}

.page5-mobile-swiper {
  display: none;
}

.page6-mobile {
  display: none;
}

.mobile-p {
  display: none;
}

.mobile-video-mc {
  display: none;
}

.mobile-page {
  display: none;
}

.box-page {
  min-height: 60vh;
  width: 100%;
  margin-top: 8vh;
  box-sizing: border-box;
}

.title-page {
  font-size: 1.2rem;
  color: #333;
  position: relative;
  margin-bottom: 80px;
}

.title-page::after {
  position: absolute;
  content: '';
  right: 0;
  width: 80%;
  height: 1px;
  background-color: rgba(125, 125, 125, 1);
  top: 50%;
  transform: translate(0, -50%);
}

.cp-box {
  display: flex;
  justify-content: space-between;
  width: 1285px;
  height: 556px;
  zoom: .99;
}

.ceter-cp {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  align-content: space-between;
}

.cp-box a {
  display: flex;
}

.left-cp {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cp-box a {
  position: relative;
  transition: .5s;
}

.ceter-cp a {
  margin-right: 1.2%;
  display: flex;
}

.ceter-cp a:nth-child(2n) {
  margin-right: 0;
}

.cp-box span {
  position: absolute;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  color: #fff;
  letter-spacing: 1px;
  background-color: rgba(0, 0, 0, .5);
  opacity: 0;
  transition: .5s;
}

.cp-box a:hover span {
  opacity: 1;
}

.mobile-box-cp {
  display: none;
}

.cplb-box {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.cplb-left {
  width: 23%;
  background-color: #fff;
  padding: 0 15px;
  box-sizing: border-box;
}

.cplb-right {
  width: 75%;
}

.cplb-left a {
  height: 80px;
  display: flex;
  width: 100%;
  font-size: .65rem;
  align-items: center;
  justify-content: flex-start;
  padding: 0 15px;
  border-bottom: 1px solid rgba(0, 0, 0, .1);
  box-sizing: border-box;
  position: relative;
}

.cplb-left li:nth-last-child(1) a {
  border: none;
}

.box-page2 {
  background-color: #FAFAFA;
}

.cplb-left a::after {
  position: absolute;
  content: '';
  right: 0;
  height: 16px;
  width: 20px;
  background-image: url('../images/cp-xy.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto;
  opacity: 0;
  transition: .5s;
}

.cplb-left a:hover,
.cplb-left .active {
  color: #E01737;
}

.cplb-left a:hover::after,
.cplb-left .active::after {
  opacity: 1;
}

.cplb-right video {
  width: 100%;
  margin-bottom: 30px;
}

.cplb-item-list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.cplb-item {
  width: 31%;
  margin-right: 3.5%;
  margin-bottom: 30px;
  padding-bottom: 34%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.cplb-item:nth-child(3n) {
  margin-right: 0;
}

.cplb-item span {
  position: absolute;
  bottom: 5%;
  font-size: .65rem;
  text-align: center;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  transition: .5s;
}

.pagination {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 35px;
}

.pagination a {
  height: 35px !important;
  width: 35px !important;
  background-color: #CCCCCC;
  color: #fff;
  font-size: .6rem;
  line-height: .6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 10px;
  transition: .5s;
}

.pagination .prev,
.pagination .next {
  /* width: 90px; */
  height: 35px !important;
  border-radius: 50% !important;
  display: none;
}

.pagination .next {
  background-image: url('../images/p-jt1.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: 15px;
}

.pagination .prev {
  background-image: url('../images/p-jt1.png');
  transform: rotate(180deg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 15px;
}

.pagination .next:hover,
.pagination .prev:hover {
  background-image: url('../images/p-jt2.png');
}

/* .pagination .last,
.pagination .first {
  width: 60px;
  height: 35px;
  border-radius: 5px;
} */

.pagination a:hover {
  background-color: #E01837;
}

.pagination .active {
  background-color: #E01837;
}

.cplb-item-list a:hover span {
  color: #E01737;
}

.title-page-box {
  display: flex;
  justify-content: space-between;
}

.title-page-box .title-page {
  width: 80%;
}

.title-page-box .title-page::after {
  width: 85%;
}

.tab-box {
  display: flex;
}

.tab-box span {
  font-size: .6rem;
  height: 30px;
  border-radius: 17.5px;
  padding: 0 15px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, .1);
  margin-right: 20px;
  cursor: pointer;
  transition: .5s;
}

.tab-box span:nth-last-child(1) {
  margin-right: 0;
}

.tab-box span:hover,
.tab-box .active {
  background-color: var(--colorR);
  color: #fff;
  border: 1px solid var(--colorR);
}

.video-box {
  display: none;
  flex-wrap: wrap;
}

.active-v-box {
  display: flex;
}

.video-item {
  width: 32%;
  margin-right: 2%;
  margin-top: 35px;
}

.video-item:nth-child(3n) {
  margin-right: 0;
}

.video-item:nth-child(-n + 3) {
  margin-top: 0;
}

.video-item p {
  padding-bottom: 56%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: 15px;
  position: relative;
}

.video-item span {
  font-size: .6rem;
  color: #333;
  text-align: center;
  display: inline-block;
  width: 100%;
}

.video-item p::after {
  position: absolute;
  content: '';
  width: 60px;
  height: 60px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url('../images/v-play2.png');
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.video-mc {
  width: 50%;
  padding: 35px;
  box-sizing: border-box;
  position: fixed;
  top: 50%;
  left: 50%;
  background-color: #fff;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 10px rgba(0, 0, 0, .5);
  z-index: 5;
  display: none;
}

.video-mc video {
  width: 100%;
}

.video-mc img {
  right: 10px;
  top: 5px;
  position: absolute;
  cursor: pointer;
}

.page-box {
  width: 100%;
  margin-top: 30px;
}

.page-box a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, .5);
  color: #808080;
  background-color: transparent;
  box-sizing: border-box;
}

.page-box .prev,
.page-box .next {
  border-radius: 5px;
}

.page-box .active {
  color: #fff;
  border: none;
}

.page-box a:hover {
  color: #fff;
  border: 1px solid transparent;
}

.title-page2::after {
  width: 85%;
}

.news-box {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.news-item {
  display: flex;
  flex-direction: column;
  width: 32.5%;
  margin-right: 1.25%;
  box-shadow: 7px 0px 20px rgba(15, 5, 10, .08);
  margin-top: 30px;
  box-sizing: border-box;
  position: relative;
}

.news-item:nth-child(3n) {
  margin-right: 0;
}

.news-item:nth-child(-n + 3) {
  margin-top: 0;
}

.news-img {
  padding-bottom: 61%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.news-info {
  padding: 42.5px 20px;
  box-sizing: border-box;
}

.news-info p {
  font-size: .6rem;
  color: #808080;
  margin-bottom: 20px;
}

.news-info h1 {
  font-size: .75rem;
  line-height: 1.2rem;
  margin-bottom: 20px;
  font-weight: 500;
}

.news-info span {
  text-align: right;
  font-size: .6rem;
  color: var(--colorR);
  display: flex;
  width: 100%;
  justify-content: flex-end;
  position: absolute;
  bottom: 30px;
  right: 20px;
}

.mobile-news-box {
  display: none;
}


/* 动画 */
.mo-bottom {
  transform: translate(0, 5vh);
  opacity: 0;
}

.mo-opt::after {
  opacity: 0;
  transform: translate(0, 5vh);
}

.bannerSwiper .swiper-slide span {
  transition: 1.5s;
}

.page-title {
  transition: .5s .5s;
}

.page2-info-img {
  transition: .5s .5s;
}

.page2::after {
  transition: .5s .5s;
}

.page2-info-img {
  transition: .5s .8s;
}

.page2::after {
  transition: .5s .8s;
}

.page2-info {
  transition: .5s 1.2s;
}

.page2-ul {
  transition: .5s 1.5s;
}

.page3-inner {
  transition: .5s 1s;
}

.logo-list {
  transition: .5s 1s;
}

.page5-swpier {
  transition: .5s 1s;
}

.page5-swpier-pagination {
  transition: .5s 1.5s;
}

.page6-tab {
  transition: .5s 1s;
}

.page6-left,
.page6-right {
  transition: .5s 1.5s;
}

.title-page {
  transition: .5s;
}

.cp-box {
  transition: .5s .5s;
}

.video-box {
  transition: .5s .5s;
}

.title-page-box {
  transition: .5s;
}

.news-box {
  transition: .5s .5s;
}

.page-box {
  transition: .5s 1s;
}

.foot-left-bottom-left .pc-p {
  margin-bottom: 0;
}

.tab-box a {
  margin-right: 20px;
}

.tab-box a:nth-last-child(1) {
  margin-right: 0;
}

.foot-more p {
  font-size: 11px;
}
.foot-more p span{
  font-size: 11px;
}
.foot-more p a{
  color: #fff;
  font-size: 11px;
}
.foot-more p a img{
  width: 14px;
  vertical-align: middle;
}

.mobile-fz-swiper-out {
  display: none;
}

.ewm p {
  font-size: 13px;
}

.page2-info-inner::after {
  position: absolute;
  content: "";
  top: 0;
  height: 100%;
  width: 3px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto;
  left: 8.25vw;
  background-image: url('../images/zsx2.png');
  display: none;
}

.mCSB_scrollTools {
  display: none !important;
}

.bdshare-button-style0-16 a,
.bdshare-button-style0-16 .bds_more {
  padding: 0 !important;
  margin: 0 10px !important;
}

.banner-video {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  object-fit: fill;
}

.bannerSwiper .swiper-slide span {
  z-index: 6;
}

.v-mobile {
  display: none;
}



/* 20201130 */
/* 增加产业板块页面 */
.auto {
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto;
}

.cover {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.cybk-item {
  width: 29%;
  margin-right: 6.5%;
}

.cybk-item:nth-child(3n) {
  margin-right: 0;
}

.cybk-item-img {
  padding-bottom: 69%;
}

.cybk-item-logo {
  padding-bottom: 35%;
  background-size: 50%;
}

.cybk-item-info {
  font-size: 16px;
  line-height: 30px;
  color: #333;
}

/* 20210226 */
/* .page2{
  padding: 9.5vw 16.5vw;
} */
.page-title {
  margin: 30px 0 50px 0;
}

.page-title p {
  margin-bottom: 0;
}

.page2-info {
  margin-top: 0;
  padding: 30px 16.5vw;
  padding-left: 0;
}

.page4 .page-title {
  margin-bottom: 120px;
}

.page4 {
  /* background-repeat: repeat;
  background-size: 70%; */
}

.logo-item {
  margin-top: 9px;
}

.logo-item:nth-child(-n + 4) {
  margin-top: 0;
}

.page5-inner {
  margin-top: -27px;
}

.page5-swpier .swiper-slide h2 {
  top: 40px;
}

.page6-box {
  top: 31%;
}

.page6-tab {
  top: 7.8vw;
}

.page6-tab span {
  margin: 0 20px;
  position: relative;
}

.page6-left {
  padding: 60px 30px;
}

.page6-box {
  height: 60vh;
}

.page6-left h2 {
  margin-bottom: 20px;
}

.page6-right a {
  padding: 45px 20px;
}

.page6-left .mCustomScrollBox::after {
  height: calc(100% - 56px);
  top: unset;
  bottom: 0;
}

.foot {
  padding: 6vh 16.5vw;
}

.foot-left ul {
  padding-bottom: 35px;
  margin-bottom: 35px;
}

.foot-more {
  height: 30px !important;
  /* height: 50px !important; */
}

.bannerSwiper .swiper-slide span {
  letter-spacing: 90px;
  font-size: 26px;
  padding-left: 90px;
}

.head-active {
  padding: 0 10%;
}

.page3-swpier-pagination .swiper-pagination-bullet,
.page5-swpier-pagination .swiper-pagination-bullet {
  margin: 0 6px;
  transition: .5s;
}


.page3-swpier-pagination .swiper-pagination-bullet:hover,
.page5-swpier-pagination .swiper-pagination-bullet:hover {
  height: 6px;
}

.page3-swpier-pagination .swiper-pagination-bullet-active,
.page5-swpier-pagination .swiper-pagination-bullet-active {
  height: 6px;
}

.page3-swpier .swiper-slide::before {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .3);
  content: '';
  position: absolute;
  top: 0;
  left: 0;
}

/* .page3-swpier .swiper-slide-active::before {
  display: none;
} */

.page6-tab span:nth-child(1) {
  margin-left: 0;
}

.page6-right a::after {
  opacity: 1;
}

.page6-right a:hover::after {
  background-image: url('../images/jt-p6s.png');
}



.colorW {
  color: #fff;
}
.page2{
  background-image: url('/images/bg_2.jpg');
  background-position: center 0;
}
.page5-swpier .swiper-slide{
  position: relative;
}
.page5-swpier .swiper-slide::after{
  position: absolute;
  width: 100%;
  height: 100%;
  content: '';
  background-color: rgba(0, 0, 0, 0);
  transition: .5s;
}
.page5-swpier .swiper-slide:hover::after{
  opacity: 0;
}

/***新的网站***/
.option-word{
	position:absolute; width:50vw; left:25vw; text-align:center; bottom:8vh; height:auto; height:38vh; display:flex; justify-content:center; flex-direction:column;
}

.option-word.ppt_1{
	width:36vw; left:32vw;
}

.option-word img{
	max-width:100%; height:auto; transition:all 0.8s; transition-delay:0.4s; opacity:0; left:-20px; position:relative;
}

.swiper-slide-active .option-word img{
	 opacity:1; left:0px;
}


.page2-img{
	width:45%;
}

.page2-img img{
	max-width:100%; transition:all 0.9s; transition-delay:1s; position:relative; left:20px; opacity:0
}

.page-2-box{
	background:rgba(29, 110, 160,0.85); border-radius:6px; display:flex; padding:0px 3%; overflow:hidden; justify-content:space-between;  transition:all 0.8s; transition-delay:0.7s; opacity:0; top:40px; position:relative
}

.swiper-slide-active .page-2-box{
	opacity:2; top:0px;
}

.swiper-slide-active .page2-img img{
	left:0px; opacity:1;
	left:0px; opacity:1;
}

.page-2-box .left{
	width:17%; padding-top:50px; background:url(/images/shu.png) no-repeat left center; background-size:auto 22%; 
}

.page-2-box .left .page-title{
	color:white; font-size:1.8rem;
}

.page-2-box .left .page-title p{
	margin-top:8px; font-size:14px;
}

.page-2-box .right{
	flex:1; display:flex; background:url(/images/dian.png) no-repeat 15px top; background-size:18% auto; padding:25px 0px; flex-direction:column; width:77%; position:relative; right:5%;
}

.page-2-box .rli-box{
	width:100%;
}


.index-n-list{
	 flex-wrap:wrap; min-height:50vh; align-items:center; display:flex;
}
 
.index-n-list li{
	width:27%; color:white; margin-right:4%;  display:flex; flex-direction:column; font-size:13px; padding:15px 1.5%;
}

.index-n-list li:first-child{
	margin-left:34%;
}

.index-n-list li:hover{
	border-radius:6px; background:#1C6D9F;
}

.index-n-list li:nth-child(2),.index-n-list li:nth-child(5){
	margin-right:0px;
}

.index-n-list li a.title{
	font-size:18px; display:block; line-height:24px;  color:white; text-decoration:none; margin-bottom:5px;
}

.index-n-list li .rq{
	border-bottom:solid 1px #fff; line-height:22px; color:white; padding-bottom:11px; margin-bottom:8px;  font-size:12px; max-width:150px;
}

.index-n-list li .desc{
	line-height:21px; font-size:14px; color:white; margin-bottom:10px;
}

.index-n-list li a.more{
	display:block; line-height:30px; padding-left:16px; background:url(/images/index_j_icon.png) no-repeat left center; background-size:10px auto; text-decoration:none; color:white; font-size:12px;
}

.swiper-pagination1{
	display:flex; justify-content:flex-end;
}

.swiper-pagination1 .swiper-pagination-bullet{
	width:12px; height:12px; background:white;
}

.bb-sliders{
	height:30px; display:flex; justify-content:flex-end;
}

.bb-sliders .li{
	 width:16px; height:16px; line-height:16px; margin-left:15px; border-radius:50%; display:flex; align-items:center; flex-direction:column; justify-content:center; cursor:pointer;
}

.bb-sliders .li span{
	width:10px; height:10px; background:white; border-radius:50%; display:inline-block;
}

.bb-sliders .li.cur{
	border:solid 1px white; 
}

.page3{
	background:url(/images/bg_3.jpg) no-repeat center top; background-size:100% auto;
}

.page3-box{
	position:relative; display:flex; flex-direction:column;
}

.page3-box .img-box-word{
	text-align:right; 
}

.page3-box .img-box-word img{
	width:38%; position:relative; margin-right:100px; transition:all 0.6s; opacity:0; position:relative; left:30px; transition-delay:0.6s;
}

.swiper-slide-active  .page3-box .img-box-word img{
	opacity:1; left:0px;
}

.page3-box .page-main-3{
	max-height:64vh; min-height:50vh; display:flex;  transition:all 0.9s; opacity:0; transition-delay:0.8s; position:relative; top:30px;
}

.swiper-slide-active .page3-box .page-main-3{
	opacity:1; top:0px;
}

.page3-box .page-main-3 .left{
	width:60%; position:relative; bottom:7.5vh;  
}

.swiper-slide-active .page3-box .page-main-3 .left{
	opacity:1;
}

.img3-list{
	width:100%;
}

.page3-box .page-main-3 .right{
	width:40%; display:flex; justify-content:center; flex-direction:column;
}

.page3 a.i-title{
	display:block; text-decoration:none; width:100%;
}

.page3 a.i-title span{
	display:block; line-height:46px; color:#727171; padding-left:25px; font-size:16px;
}

.page3 a.i-title .img{
	width:100%;
}

.padding.page3{
	padding-left:0px; padding-right:0px; padding:0px 0px; display:flex; flex-direction:column; justify-content:center; 
}

.img3-list .img img{
	width:100%;
}

.index-n-right{
	display:flex; flex-direction:column; justify-content:center;
}

.index-n-right a{
	display:flex; height:155px; text-decoration:none; color:#727171; position:relative; transition: transform 0.15s; width:95%; padding-right:5%;
}

.index-n-right a .rq{
	width:140px; padding:0px 25px; height:100%; align-items:center; display:flex; flex-direction:column; justify-content:center; color:#00a0e9; font-size:20px;
}

.index-n-right a.cur .rq{
	font-size:22px;
}

.index-n-right a .txt-box{
	display:flex; flex:1; justify-content:center; flex-direction:column;
}

.index-n-right a .txt-box .title{
	line-height:25px; font-size:16px;margin-bottom:10px; padding-right:15px;
}

.index-n-right a.cur .txt-box .title{
	font-size:17px;
}

.index-n-right a .txt-box .more{
	display:inline-block; line-height:30px; padding-left:30px; background:url(/images/icon_jiantou.png) no-repeat left center; background-size:22px auto; font-size:12px;
}

.index-n-right a.cur{
	color:white; background:url(/images/blue_bg.png) no-repeat left center; background-size:100% 100%;    position:relative; z-index:200;  transform:scaleX(1.1)
}

.index-n-right a.cur .rq{
	color:white;
}

.index-n-right a.cur .txt-box .more{
	background:url(/images/icon_jiantou_cur.png) no-repeat left center; background-size:22px auto; font-size:13px;
}

.padding.page4{
	padding-top:7.0vw;
}

.page4{
  background:url(/images/bg_4.jpg) no-repeat center bottom; background-size:100% auto;
}

.page4 .img-box-words{
	width:92%; padding-right:8%; text-align:right; transition:all 0.9s; transition-delay:0.5s; opacity:0; position:relative; left:30px;
}

.swiper-slide-active.page4 .img-box-words{
	opacity:1; left:0px;
}

.page4 .img-box-words img{
	width:36%; 
}


.qybox{
	padding:40px 3%; background:url(/images/qy.png) no-repeat center top; background-size:100% 100%; border-radius:7px; position:relative; top:40px; transition-delay:0.6s; opacity:0; transition:all 0.9s; transition-delay:0.6s;
}

.swiper-slide-active  .qybox{
	 top:0px; opacity:1;
}

.page4 .qybox .qy-box{
	display:flex; 
}

.swiper-slide .qy-box .left{
	width:32%; padding-right:10%; padding-left:1%; position:relative; bottom:15vh; padding-bottom:6vh; transition:all 1.9s; transition-delay:0.5s; opacity:0; left:53px;
}

.swiper-slide-active.swiper-slide   .qy-box .left{
	 transition:all 0.6s;  opacity:1; left:0px;
}

.page4 .qybox  .left img{
	max-width:100%;
}

.page4 .qybox .qy-box .right{
	width:57%;
}

.page4 .qybox .qy-box .left .img{
	position:absolute; right:0px; bottom:0px; width:48.5%;
}

.page4 .qybox .qy-box .right{
	width:56%; color:white; padding-top:23px;
}

.page4 .qybox .qy-box .right .title{
	margin-bottom:22px; text-transform:uppercase; font-size:0.8rem;
}

.page4 .qybox .qy-box .right .title span{
	color: white;
    font-size: 1.8rem;
	 
}

.page4 .qybox .qy-box .right .title font{
	display:block; line-height:38px;
}

.page4 .qybox .qy-box .right .about-text{
	line-height:28px; padding:15px 5%; font-size:14px;
}

.page4 .qybox .qy-box .right .about-text p{
	margin-bottom:12px; font-size:16px;
}

.about-bottom{
	height:60px; color:white; width:88%; position:absolute; left:0px; bottom:0px; line-height:60px; color:white; background:#0195E0; padding:0px 6%; display:flex; justify-content:space-between;
}

.about-bottom .left{
	width:32%; display:flex; flex-direction:column; justify-content:center; text-align:left;
}

.about-bottom .left img{
	height:40px; width:56px;
}

.about-bottom .right{
	width:550px; display:flex; justify-content:flex-end; align-items:center;
}

.about-bottom .right a{
	margin-left:18px; display:flex; flex-direction:column; justify-content:center;
}

.about-bottom .right a img{
	height:26px;
}

.swiper-pagination0{
	position:relative; z-index:1000; bottom:40px !important; left:30px !important;
}


.swiper-pagination0 .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
}

.index-tool{
	position:fixed; width:15vw; right:5vw; bottom:20px; display:flex; justify-content:flex-end; z-index:2000; align-items:flex-end;
}

.index-tool a{
	display:inline-block; text-decoration:none; display:inline-block; margin-left:18px;
}




@media screen and (max-width:1680px) {
	.index-n-right a .txt-box .title{
		font-size:15px; line-height:24px; margin-bottom:10px;
	}
	
	.index-n-right a.cur .txt-box .title {
    	font-size: 16px;
	}
	
	.index-n-right a{
		height:120px;
	}
	
	.index-n-right a .rq {
    	width: 120px;
    	padding: 0px 15px; 
	}
	
	.page4 .qybox .qy-box .right .about-text p {
    	margin-bottom: 10px;
    	font-size: 14px;
	}
	
	.page4 .qybox .qy-box .right .about-text {
    	line-height: 26px;
	}
	
	.page4 .qybox .qy-box .right .title span {    	 
    	font-size: 1.7rem;
	}
	
	.index-n-list li a.title {
    	font-size: 18px;
	}
	
	.page4 .qybox .qy-box .right .title font{
		font-size:16px;
	}
	
	.page-2-box .left .page-title {
    	font-size: 1.65rem;
	}
	
	.page3-box .page-main-3 .right{
		position:relative; bottom:5vh;  
	}
	
	.index-tool a:nth-child(1){
		width:16px;
	}
	.index-tool a:nth-child(2){
		width:16px;
	}
	.index-tool a:nth-child(3){
		width:16px;
	}
	.index-tool a:nth-child(4){
		width:20px;
	}
	
	.page2-img{
		width: 35%;
	}
	
	.page3-box .img-box-word img {
		width: 33%;
		margin-right: 100px;
		left: 0px;
	}
	
	.page4 .qybox .qy-box .right{
		padding-top: 0px;
	}
	
	.page4 .qybox .qy-box .right .title {
		margin-bottom: 5px;
    
	}
	
	.qybox {
		padding: 35px 3%;
	}
	
	
}

@media screen and (min-width:1080px) and (max-width:1480px){

.index-n-right a {
    height: 110px;
}

.index-n-right a .txt-box .title {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 8px;
	height:44px; overflow:hidden;
}

.page4 .qybox .qy-box .right .about-text {
    line-height: 24px;
    padding: 8px 4%;
    font-size: 14px;
}


.page3 {
    background-size: 100% 100%;
}

.page4 {
    background-size: 100% 100%;
}

.page2-img{
	width: 28%;
}

.qybox {
    padding:30px 2.5%;
}

.page4 .qybox .qy-box .right .title {
	margin-bottom:0px;
}

.page4 .qybox .qy-box .right .about-text{
	padding: 10px 3%;
}

.page-2-box .right {
		padding: 22px 0px;
    
	}


}

.page4 .qybox .qy-box .right .about-text p *{
	font-size:inherit;
}
 


@media screen and (min-width:1080px){
	.more-about-index{
		display:none;
	}
	
	.head-active.head .input-box input.input-border{
		background-color:#f0f0f0;
	}
	
	
	.contact-msg-box-bg{
		width:100vw; height:100vh; position:fixed; left:0px; top:0px; z-index:2000; background:rgba(0,0,0,0.4);
	}
	
	.contact-msg-box{
		width:58vw; left:20vw; top:9vh; position:fixed; z-index:3000; background:white; border-radius:6px; border:solid 1px #ccc; padding:5.5vh 3vw;
	}
	
	.contact-msg-box .msg-title{
		height:40px; line-height:40px; font-size:var(--size1); margin-bottom:16px;
	}
	.msg-body{
		
	}
	
	.msg-body .item1{
		display:flex; width:100%; margin-bottom:23px; justify-content:space-between;
	}
	
	.msg-body .item1 li{
		width:30%; display:flex; flex-direction:column;
	}
	
	.msg-body .item1 li .tit,.msg-body .item2 .tit{
		line-height:32px; font-size:18px; width:100%;
	}
	
	.msg-body .item1 li .tit font,.msg-body .item2 .tit font{
		display:inline-block; margin-left:8px; font-size:12px; color:#727171;
	}
		
	.msg-body .item1 li input{
		display:block; width:95%; height:20px; line-height:20px; padding:5px 2.5%; border:solid 1px #ccc; border-radius:2px; outline:none; font-size:13px;
	}
	
	.msg-body .item2{
		display:flex; flex-direction:column;
	}
	
	.msg-body .item2 textarea{
		display:block; width:95%; height:85px; line-height:24px; padding:6px 1%; border:solid 1px #ccc; border-radius:4px; outline:none; font-size:13px;
	}
	
	.msg-body .item3{
		display:flex; justify-content:center; margin-top:35px;
	}
	
	.msg-body .item3 button.tj{
		width:100px; text-align:center; height:34px; line-height:34px; border-radius:2px; background:#00A0E9; color:white; border:none; outline:none; font-size:14px
	}
	
	.msg-body .item3 a{
		background:#999;width:100px; text-align:center; height:34px; line-height:34px; border-radius:2px; color:white; border:none; outline:none; text-decoration:none; margin-left:15px; font-size:14px;
	}
	
	.msg-body.msg-jy .item1 li{
		width:47%;
	}
	
	.page4 .qybox .qy-box .right .about-text{
		padding: 8px 2.5%;
	}
	
	.index-n-list li{    
		padding: 10px 1.5%;
	}
	
	.page-2-box .right {
		padding: 18px 0px;
	}
	
	.index-n-right{
		padding-top:23px;
	}
	
	
	
}
 
	

@media screen and (max-width:1080px){
	.page2-img{
		display:none;
	}
	
	.page-2-box {
		background: none;
		border-radius: 0px;
		display: flex;
		padding: 0px 1%;
		overflow: hidden;
		justify-content: flex-start;
		flex-direction:column;
		transition: all 0.8s;
		transition-delay: 0.7s;
		opacity: 1;
		top: 0px;
		position: relative;
	}
	
	.page-2-box .left {
		width: 100%;
		padding-top: 40px;
		background: none;
	}
	
	.page-2-box .left .page-title {
		font-size: 1.1rem; position:relative; top:30px; opacity:0; transition:all 0.6s; transition-delay:0.6s;
	}
	
	.swiper-slide-active .page-2-box .left .page-title {
		top:0px; opacity:1;
	}
	
	.page-2-box .left .page-title p {
		font-size: 12px;
	}
	
	.page-2-box .right{
		flex:1; width:100%; background:none; right:0px; margin-top:25px;
		background: rgba(29, 110, 160,0.85);
		border-radius: 6px;
	}
	
	.index-n-list li:first-child {
		margin-left: 0%;
	}
	
	.page2.padding{
		padding: 5vw 10px;
	}
	 
	
	.index-n-list li {
		width: 95%;
		color: white;
		margin-right: 0%;
		font-size: 13px;
		padding: 10px 2.5%;
	}
	
	.index-n-list li a.title{
		margin-bottom:0px; font-size:14px;
	}
	
	.index-n-list li .desc{
		font-size:12px; margin-bottom: 6px;
	}
	
	.index-n-list li:nth-child(4),.index-n-list li:nth-child(5){
		display:none;
	}
	
	.swiper-pagination1{
		position:relative; right:25px; max-width:90%; z-index:5000;
	}
	
	.page3-box .img-box-word{
		display:none;
	}
	
	.page3-box .page-main-3 {
		max-height: 82vh;
		height: 82vh;
		flex-direction:column;
		justify-content:flex-start;
	}
	
	.page3-box .page-main-3 .left {
		width: 100%;
		position: relative;
		bottom: 0vh;
	}
	
	.page3-box .page-main-3 .right {
		width: 100%;
		display: flex;
		justify-content: flex-start;
		flex-direction: column;
	}
	
	.page3 .index-n-right a.cur .txt-box .title {
		font-size: 13px; line-height:19px;
	}
	
	.page3 .index-n-right a.cur{
		transform: scaleX(1.0);
	}
	
	.page3 .index-n-right a .txt-box .title{
		margin-bottom:5px;
	}
	
	.page3 .index-n-right a .txt-box .more{
		line-height:25px;
	}
	
	
	.page4 .index-n-right a.cur .txt-box .title {
		font-size: 18px; line-height:24px;
	}
	
	
	.page4 .qybox .qy-box .right .title font{
		font-size:12px;line-height:17px;
	}
	
	
	.index-n-right a .rq{
		width:100px; font-size:13px;
	}
	
	.page4 .img-box-words{
		display:none;
	}
	
	.page4 .qybox .qy-box{
		flex-direction:column;
	}
	 
	.swiper-slide .qy-box .left {
		width: 98%;
		padding-right: 1%;
		padding-left: 1%;
		position: relative;
		bottom: 0vh;
		padding-bottom: 0vh;
		transition: all 1.9s;
		transition-delay: 0.5s;
		opacity: 0;
		left: 53px;
	}
	 
	.page4 .qybox .qy-box .right {
		width: 100%;
		color: white;
		padding-top: 20px;
	}
	
	.page4 .qybox {
		padding: 6vh 3%;
		min-height: 70vh;
	}
	
	.padding.page4 {
		padding: 7.5vw 0px;
		padding-top: 6vh;
		background:#2D96C6
	}
	
	.page4 .qybox .qy-box .right .title{
		text-align:center; margin-bottom:0px; font-size:12px;
	}
	
	.page4 .qybox .qy-box .right .title span {
		font-size:20px; line-height:28px;
	}
	
	.page4 .qybox .qy-box .right .about-text {
		line-height: 20px;
		padding: 10px 0;
		font-size: 13px;
	}
	
	.more-about-index{
		text-align:center; margin-top:12px;
	}
	
	.more-about-index a{
		display:inline-block; line-height:30px; height:30px; color:#0195E0; background:#fff; border-radius:3px; text-decoration:none; padding:0px 25px; font-size:14px;
		border:solid 1px #0195E0;
	}
	
	.page3 a.i-title{
		text-align:right;
	}
	
	.page3 a.i-title span{
		padding-left: 0px; color:white; padding-right:10px;
	}
	
	.about-bottom .left img{
		height:30px;
	}
	
	.about-bottom .right a img {
		height: 20px;
	}
	
	.swiper-pagination1 .swiper-pagination-bullet{
		background:#ccc;
	}
	
	.swiper-pagination1 .swiper-pagination-bullet.swiper-pagination-bullet-active{
		background:#fff;
	}
	
	.index-n-right a.cur .rq {
		font-size: 16px;
	}
	
	.page-2-box .rli-box{
		position:relative; opacity:0; top:35px; transition:all 0.9s; transition-delay:0.9s;
	}
	
	.swiper-slide-active .page-2-box .rli-box{
		opacity:1; top:0px;
	}
	
	.page-2-box .right{
		transition:all 0.9s; transition-delay:0.4s; opacity:0;
	}
	
	.swiper-slide-active .page-2-box .right{
		opacity:1; padding-top:13px;
	}
	
	.page-2-box .page-title p{
		margin-bottom:0px !important; line-height:22px !important;
	}
	
	.contact-msg-box-bg{
		width:100vw; height:100vh; position:fixed; left:0px; top:0px; z-index:2000; background:rgba(0,0,0,0.4);
	}
	
	.contact-msg-box{
		width:58vw; left:20vw; top:9vh; position:fixed; z-index:3000; background:white; border-radius:6px; border:solid 1px #ccc; padding:4vh 3vw;
	}
	
	.contact-msg-box .msg-title{
		height:40px; line-height:40px; font-size:var(--size1); margin-bottom:16px;
	}
	.msg-body{
		
	}
	
	.msg-body .item1{
		display:flex; width:100%; margin-bottom:23px; justify-content:space-between;
	}
	
	.msg-body .item1 li{
		width:30%; display:flex; flex-direction:column;
	}
	
	.msg-body .item1 li .tit,.msg-body .item2 .tit{
		line-height:32px; font-size:var(--size3); width:100%;
	}
	
	.msg-body .item1 li .tit font,.msg-body .item2 .tit font{
		display:inline-block; margin-left:8px; font-size:12px; color:#727171;
	}
		
	.msg-body .item1 li input{
		display:block; width:95%; height:20px; line-height:20px; padding:5px 2.5%; border:solid 1px #ccc; border-radius:2px; outline:none;
	}
	
	.msg-body .item2{
		display:flex; flex-direction:column;
	}
	
	.msg-body .item2 textarea{
		display:block; width:95%; height:85px; line-height:24px; padding:6px 2.5%; border:solid 1px #ccc; border-radius:4px; outline:none;
	}
	
	.msg-body .item3{
		display:flex; justify-content:center; margin-top:35px;
	}
	
	.msg-body .item3 button.tj{
		width:100px; text-align:center; height:34px; line-height:34px; border-radius:2px; background:#00A0E9; color:white; border:none; outline:none; font-size:14px
	}
	
	.msg-body .item3 a{
		background:#999;width:100px; text-align:center; height:34px; line-height:34px; border-radius:2px; color:white; border:none; outline:none; text-decoration:none; margin-left:15px; font-size:14px;
	}
	
	.msg-body.msg-jy .item1 li{
		width:47%;
	}
	
	.page3 .index-n-right a .txt-box .title{
		font-size:13px;
	}
	
}

@media screen and (max-width:750px){
	
	.index-n-right a{
		height:auto;
	}
	
	.index-n-right a{
		transition:none;
		transform:none;
	}
	
	.index-n-right a .rq{
		width:90px; padding: 0px 8px;
	}
	
	
	.padding.page3{
		background:white;
	}
	
	
	.page3 .index-n-right a.cur{
		transform:none; transition:none;
	}
	
	.page3-box .page-main-3 {
		max-height: none;
		height: auto;
	}
	
	.page3-box .page-main-3 .right{
		bottom:0px;
	}
	
	.index-n-right a{
		width:99%; padding-right:1%; height:auto; border-bottom:solid 1px #ccc;  padding-top:15px; padding-bottom:15px;
	}
	 
	.index-n-right a.cur{
		background:white; color:#666;
	}
	
	.index-n-right a.cur .rq,.index-n-right a .rq{
		color:#666;
	}
	
	.index-n-right a{
		color:#555;
	}
	
	.page3 a.i-title span{
		color:#333;
		font-size:20px;
		font-weight:bold;
	}
	
	
	.contact-msg-box .msg-title {
    height: auto;
    line-height: 25px;
}
	
	
	
	.index-n-right a.cur .txt-box .more {
		background: url(/images/icon_jiantou.png) no-repeat left center;
		background-size: 22px auto;
		font-size: 12px;
	}
	
	.index-n-right a.cur .rq{
		font-size:13px;
	}
	
	
	
	.nav-btn {
		width: 26px;
		height: 26px;
		background-size:100% auto;
	}
	
	.head-mc ul li{
		padding: 18px 0;
	}
	
	.head-mc ul li a {
		font-size: 16px !important;
	}
	
	
	.index-tool{
		display:none;
	}
	
	.page-2-box .left{
		padding-top:10px;
	}
	
	.page-2-box .right{
		background:none;
	}
	
	.index-n-list li{
		background: rgba(29, 110, 160,0.85); border-radius:6px;
	}
	
	.contact-msg-box .msg-title{
		font-size:15px;
	}
	
	
	.msg-body .item1{
		display:flex; width:100%; margin-bottom:20px; justify-content:space-between; flex-direction:column;
	}
	
	.msg-body .item1 li{
		width:100%; display:flex; flex-direction:column; 
	}
	
	.msg-body .item1 li .tit,.msg-body .item2 .tit{
		line-height:32px; font-size:15px; width:100%;
	}
	
	.msg-body .item1 li .tit font,.msg-body .item2 .tit font{
		display:inline-block; margin-left:8px; font-size:12px; color:#727171;
	}
		
	.msg-body .item1 li input{
		display:block; width:95%; height:20px; line-height:20px; padding:5px 2.5%; border:solid 1px #ccc; border-radius:2px; outline:none; font-size:12px;
	}
	
	.msg-body .item2{
		display:flex; flex-direction:column;
	}
	
	.msg-body .item2 textarea{
		display:block; width:95%; height:65px; line-height:22px; padding:6px 2.5%; border:solid 1px #ccc; border-radius:4px; outline:none;
	}
	
	.msg-body .item3{
		display:flex; justify-content:center; margin-top:27px;
	}
	
	.msg-body .item3 button.tj{
		width:100px; text-align:center; height:30px; line-height:30px; border-radius:2px; background:#00A0E9; color:white; border:none; outline:none; font-size:13px
	}
	
	.msg-body .item3 button.tj font{
		display:none;
	}
	
	
	
	
	
	
	
	
	
	
	

}

.top20{
		margin-top:22px;
	}
@media screen and (max-width:480px){
	.pc{
	    display: none !important;
	}
	.top20{
		margin-top:15px;
	}
	
	.contact-msg-box .msg-title{
		height:auto; line-height:22px;
	}
	
	.index-n-list li{
		margin-bottom:15px;
	}
	
	.index-n-list li:nth-child(3){
		display: none;
	}
	
	
	.page2 {
		background-image: url(/images/bg_2.jpg);
		background-size: auto 100vh !important;
	}
	
	.page4 .qybox{
		padding-left: 0px; padding-right: 0px;
	}
	
	.page4 .qybox .qy-box .right .about-text{
		padding-left:10px; padding-right:10px;
	}
	
	.more-about-index{
		text-align:center; margin-top:25px;
	}
	
	.more-about-index a{
		color:white; background:none; height:32px; line-height:32px;  padding: 0px 18px; border-radius:3px; border:solid 1px white;
	}
	
	
	.page3 .index-n-right a.cur .txt-box .title {
		font-size: 14px; line-height:18px;
	}
	
	.index-n-right a .rq{
		width:85px; padding: 0px 5px;
	}
	
	
	.index-n-right a{
		padding-top: 13px;
		padding-bottom: 13px;
		width:100%;
		padding-right:0;
	}
	
	.page3 .index-n-right a .txt-box .more{
		line-height:23px;
	}
	
	.padding.page3{
		justify-content: flex-start;  
	}
	
	.padding.page3 .page-main-3{
		padding-top:52px;
	}
	
	.padding.page4 {
		padding: 7.5vw 0px;
		padding-top: 6vh;
		background: #2D96C6;
	}
	
	.page4 .qybox{
		padding:0px 0px; padding-top:22px;
	}
	
	
	.swiper-slide-active .page-2-box .right{
		padding-top:0px;
	}
	
	.page-2-box .right{
		margin-top:15px;
	}
	
	.index-n-list li .desc{
		 
	}
	
	.index-n-list li:nth-child(3),.index-n-list li:nth-child(44){
		display: block;
	}
	
	.swiper-pagination1{
		display:none;
	}
	
	.index-n-list{
		min-height: 70vh;
		flex-direction: column;
		flex-wrap: nowrap;
		justify-content: center;
	}
		
	.index-n-list li .rq{
		border-bottom:solid 1px #fff;padding-bottom:2px; margin-bottom:8px;  font-size:12px; max-width:100%; text-align:right;
	}

	.index-n-list li .desc{
		line-height:20px; font-size:12px; color:white; margin-bottom:8px;
	}

	.index-n-list li a.more{
		display:block; line-height:30px; padding-left:16px; background:url(/images/index_j_icon.png) no-repeat left center; background-size:10px auto; text-decoration:none; color:white; font-size:12px;
	}	
	
	.index-n-list li a.title {
		height:23px; line-height:23px; overflow:hidden;
	}
	
	.msg-body.msg-jy .item1 li{
		margin-bottom:15px;
	}
	
	.contact-msg-box {
    width: 88vw;
    left: 4vw;
    top: 9vh;
	padding: 4vh 2vw;
	}
	
	
}


